vendor/golang.org/x/crypto/cryptobyte.Builder.result (field)
26 uses
vendor/golang.org/x/crypto/cryptobyte (current package)
builder.go#L25: result []byte
builder.go#L39: result: buffer,
builder.go#L48: result: buffer,
builder.go#L65: return b.result[b.offset:], nil
builder.go#L74: return b.result[b.offset:]
builder.go#L188: offset := len(b.result)
builder.go#L196: result: b.result,
builder.go#L224: length := len(child.result) - child.pendingLenLen - child.offset
builder.go#L261: child.result[child.offset] = lenByte
builder.go#L266: copy(child.result[childStart+extraBytes:], child.result[childStart:])
builder.go#L274: child.result[child.offset+i] = uint8(l)
builder.go#L282: if b.fixedSize && &b.result[0] != &child.result[0] {
builder.go#L286: b.result = child.result
builder.go#L296: if len(b.result)+len(bytes) < len(bytes) {
builder.go#L299: if b.fixedSize && len(b.result)+len(bytes) > cap(b.result) {
builder.go#L303: b.result = append(b.result, bytes...)
builder.go#L316: length := len(b.result) - b.pendingLenLen - b.offset
builder.go#L326: b.result = b.result[:len(b.result)-n]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |